home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / OpenGL 1.0 SDK / Source / Examples / aux / backtrace / scene.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  4.0 KB  |  118 lines  |  [TEXT/CWIE]

  1. /*
  2.  * (c) Copyright 1993, 1994, 1995, 1996 Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
  36.  */
  37. #ifndef SCENE_H
  38. #define SCENE_H
  39.  
  40. #include "Point.h"
  41.  
  42. /* Index of refraction stuff */
  43. const GLfloat min_index = .1;
  44. const GLfloat max_index = 2.5;
  45. const int nindices = 6;
  46.  
  47. const struct {
  48.   const char *name;
  49.   GLfloat index;
  50. } indices[] = {
  51.   {"Air", 1.0},
  52.   {"Ice", 1.31},
  53.   {"Water", 1.33},
  54.   {"Zinc Crown Glass", 1.517}, 
  55.   {"Light Flint Glass", 1.650},
  56.   {"Heavy Flint Glass", 1.890}
  57. };
  58.  
  59. const int def_refraction_index = 4;
  60.  
  61. typedef struct {
  62.   GLfloat diffuse[4];
  63.   Point_b pos;
  64.   GLboolean shadow_mask[4];
  65.   GLfloat matrix[16];
  66.   char name[64];
  67.   int on;
  68. } light;
  69.  
  70. const int nlights = 3;
  71. extern light lights[];
  72.  
  73. /* scene_load_texture uses no OpenGL calls and so can be called before
  74.  * mapping the window */
  75. int scene_load_texture(char *texfile);
  76. const char def_texfile[] = /*DATADIR*/ "opengl1.512.bw.rgb";
  77.  
  78. extern int possible_divisions[];
  79. const int npossible_divisions = 4;
  80. const int def_divisions_index = 1;
  81.  
  82. extern GLfloat aspect;
  83.  
  84. extern int draw_square, draw_shadows, draw_refraction, draw_sphere, 
  85.   draw_lights, draw_texture;
  86.  
  87. /* These are names used for picking */
  88. const int name_background = 0;
  89. const int name_square = 1;
  90. const int name_sphere = 2;
  91. const int name_lights = 3;
  92.  
  93. void scene_init();
  94. void scene_draw();
  95. int scene_pick(GLdouble x, GLdouble y);
  96.  
  97. /* This returns all the lights to their default postions */
  98. void scene_reset_lights();
  99.  
  100. void lights_onoff(int light, int val);
  101. void refraction_change(GLfloat refraction);
  102. void divisions_change(int divisions);
  103.  
  104. /* name is one of the names defined above.
  105.  * phi, theta are in radians and are the amount of motion requested 
  106.  * returns whether or not it did anything. 
  107.  * If update is zero, the shadows and refractions will not be recomputed */
  108. int scene_move(int name, float dr, float dphi, float dtheta, int update);
  109.  
  110. /* This function is a companion to scene_move().
  111.  * It recomputes the shadows and refractions - dr, dphi, and dtheta
  112.  * should indicate whether or not the respective values were changed
  113.  * since the stuff was last computed. */
  114. void scene_move_update(int name, int dr, int dphi, int dtheta);
  115.  
  116. #endif
  117.  
  118.